home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / KoImageResource.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-05-30  |  1.2 KB  |  39 lines

  1. /*
  2.  *  koImageResource.h - part of KOffice
  3.  *
  4.  *  Copyright (c) 2005 Thomas Zander <zander@kde.org>
  5.  *
  6.  * This library is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU Library General Public
  8.  * License as published by the Free Software Foundation;version 2.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Library General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU Library General Public License
  16.  * along with this library; see the file COPYING.LIB.  If not, write to
  17.  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  18.  * Boston, MA 02110-1301, USA.
  19.  */
  20.  
  21. #ifndef __ko_imageresource__
  22. #define __ko_imageresource__
  23. #include <koffice_export.h>
  24.  
  25. class KOFFICEUI_EXPORT KoImageResource
  26. {
  27.  
  28. public:
  29.  
  30.     KoImageResource();
  31.  
  32.     /// returns a 24 pixels xpm-format image of a chain.
  33.     const char** chain();
  34.     /// returns a 24 pixels xpm-format image of a broken chain.
  35.     const char** chainBroken();
  36. };
  37. #endif // __ko_imageresource__
  38.  
  39.